home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_08 / 9n08110c < prev    next >
Text File  |  1991-06-22  |  393b  |  14 lines

  1. /*
  2.   This is a sample test file for the plist program.
  3. */
  4.  
  5. main()                        /* this is a comment    */
  6. {
  7.   int i, j, k;
  8.   printf("Hello\n");          /* this is another one  */
  9.   for (i = 0; i < 8; i++)     /* here's a third       */
  10.     for (j = 0; j < 8; j++)   /* and a fourth         */
  11.       k = i * j;
  12.   exit(0);                    /* bye                  */
  13. }
  14.